* src/callproc.c (SIGCHLD): Remove conditional definition, syssignal.h defines it.
authorDan Nicolaescu <dann@ics.uci.edu>
Fri, 1 Oct 2010 13:06:44 +0000 (06:06 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Fri, 1 Oct 2010 13:06:44 +0000 (06:06 -0700)
src/ChangeLog
src/callproc.c

index 36b5579425ce7e1b1b87ad98ecdd8ccb8b1b8165..47bc6796b463efb6de4e7f086bf7c662561ba463 100644 (file)
@@ -1,5 +1,7 @@
 2010-10-01  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h defines it.
+
        * process.c: Move #include <pty.h> earlier.
        (SIGCHLD): Remove conditional definition, syssignal.h defines it.
        (pty_name): Move definition later.
index 6f70631a4842e4591dd0e0b879e5f100dfd60142..e1ffd0c0cf648817490c8e4965435f96f35ede92 100644 (file)
@@ -24,13 +24,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <errno.h>
 #include <stdio.h>
 #include <setjmp.h>
-
-/* Define SIGCHLD as an alias for SIGCLD.  */
-
-#if !defined (SIGCHLD) && defined (SIGCLD)
-#define SIGCHLD SIGCLD
-#endif /* SIGCLD */
-
 #include <sys/types.h>
 
 #ifdef HAVE_UNISTD_H